Total Complexity | 1 |
Total Lines | 9 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | import PropTypes from "prop-types" |
||
5 | |||
6 | class HeaderBgTitle extends React.Component { |
||
7 | render() { |
||
8 | return ( |
||
9 | <header className={`page-header-title ${this.props.classes || ``}`}> |
||
10 | <h1> |
||
11 | {this.props.title} {this.props.highlight && <span className={`highlight`}>{this.props.highlight}</span>} |
||
12 | </h1> |
||
13 | </header> |
||
14 | ) |
||
25 |